home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / Programs / Virtual.CD.v5.0.2.Network.Edition.WinALL / VCD502EG.exe / Program Files / Virtual CD v5 / API / examples / MFC / VcdAPITest / DlgSetDrives.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-26  |  1006 b   |  44 lines

  1. // DlgSetDrives.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "VcdAPITest.h"
  6. #include "DlgSetDrives.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CDlgSetDrives dialog
  16.  
  17.  
  18. CDlgSetDrives::CDlgSetDrives(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CDlgSetDrives::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CDlgSetDrives)
  22.     m_strDrives = _T("");
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CDlgSetDrives::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CDlgSetDrives)
  31.     DDX_Text(pDX, IDC_VCDDRIVES, m_strDrives);
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CDlgSetDrives, CDialog)
  37.     //{{AFX_MSG_MAP(CDlgSetDrives)
  38.         // NOTE: the ClassWizard will add message map macros here
  39.     //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CDlgSetDrives message handlers
  44.